JavaScript - определение. Что такое JavaScript
Diclib.com
Словарь ChatGPT
Введите слово или словосочетание на любом языке 👆
Язык:

Перевод и анализ слов искусственным интеллектом ChatGPT

На этой странице Вы можете получить подробный анализ слова или словосочетания, произведенный с помощью лучшей на сегодняшний день технологии искусственного интеллекта:

  • как употребляется слово
  • частота употребления
  • используется оно чаще в устной или письменной речи
  • варианты перевода слова
  • примеры употребления (несколько фраз с переводом)
  • этимология

Что (кто) такое JavaScript - определение

HIGH-LEVEL PROGRAMMING LANGUAGE
Javascript; Javascript programming language; JavaScript language; JavaScript programming language; Java script; CSJS; Server-side JavaScript; Client-side JavaScript; SSJS; DOM scripting; JavaScript rollover; Server-Side JavaScript; Javascript Console; JavaScript Forums; .js; Javascript debugger; Javascript 1.7; Server side javascript; Javascript (programming language); Java Script; Escript; JavaScript 1.6; JavaScript 1.7; Live-script; Live-Script; JavaScripts; JavaScript (programming language); Online JavaScript IDE; Mocha (programming language); Online Javascript IDE; JS online IDE; Online JS IDE; Criticism of JavaScript; JavaScript Jabber; History of JavaScript; Functional programming in JavaScript; Vanilla JavaScript; Vanilla JS; Ownership of the JavaScript trademark; JavaScript trademark; JavaScript security vulnerabilities; Security vulnerabilities in JavaScript; JavaScript vulnerabilities; Features of JavaScript
Найдено результатов: 47
JavaScript         
<language> (Formerly "LiveScript") Netscape's simple, cross-platform, World-Wide Web scripting language, only very vaguely related to Java (which is a Sun trademark). JavaScript is intimately tied to the World-Wide Web, and currently runs in only three environments - as a server-side scripting language, as an embedded language in server-parsed HTML, and as an embedded language run in web browsers where it is the most important part of DHTML. JavaScript has a simplified C-like syntax and is tightly integrated with the browser Document Object Model. It is useful for implementing enhanced forms, simple web database front-ends, and navigation enhancements. It is unusual in that the scope of variables extends throughout the function in which they are declared rather than the smallest enclosing block as in C. JavaScript originated from Netscape and, for a time, only their products supported it. Microsoft now supports a work-alike which they call JScript. The resulting inconsistencies make it difficult to write JavaScript that behaves the same in all browsers. This could be attributed to the slow progress of JavaScript through the standards bodies. JavaScript runs "100x" slower than C, as it is purely interpreted (Java runs "10x" slower than C code). Netscape and allies say JavaScript is an "open standard" in an effort to keep Microsoft from monopolising web software as they have desktop software. Netscape and Sun have co-operated to enable Java and JavaScript to exchange messages and data. See also VBScript. Usenet newsgroup: news:comp.lang.javascript. Mailing List: <majordomo@obscure.org> ("subscribe javascript" in body). (2003-04-28)
Escript         
·noun A Writing.
JavaScript engine         
IMPLEMENTATION OF JAVASCRIPT
ECMAScript engine; JavaScript engines; JavaScript Engine; JS engine
A JavaScript engine is a software component that executes JavaScript code. The first JavaScript engines were mere interpreters, but all relevant modern engines use just-in-time compilation for improved performance.
JavaScript library         
LIBRARY OF JAVASCRIPT CODE THAT ALLOWS FOR EASIER DEVELOPMENT OF JAVASCRIPT-BASED APPLICATIONS
Javascript library; JavaScript Framework; JavaScript frameworks; JavaScript libraries
A JavaScript library is a library of pre-written JavaScript code that allows for easier development of JavaScript-based applications, especially for AJAX and other web-centric technologies.
Isomorphic JavaScript         
ALSO KNOWN AS UNIVERSAL JAVASCRIPT, DESCRIBES JAVASCRIPT APPLICATIONS WHICH RUN BOTH ON THE CLIENT AND THE SERVER.
Universal JavaScript
Isomorphic JavaScript, also known as Universal JavaScript, describes JavaScript applications which run both on the client and the server.
Unobtrusive JavaScript         
GENERAL APPROACH TO THE USE OF JAVASCRIPT IN WEB PAGES
Unobtrusive Javascript; Unobtrusive scripting
Unobtrusive JavaScript is a general approach to the use of client-side JavaScript in web pages so that if JavaScript features are partially or fully absent in a user's web browser, then the user notices as little as possible any lack of the web page's JavaScript functionality. The term has been used by different technical writers to emphasize different aspects of front-end web development.
Comparison of JavaScript-based source code editors         
WIKIMEDIA LIST ARTICLE
Comparison of Javascript-based source code editors
This article provides basic feature comparison between some of the JavaScript-based source code editors available today.
JavaScript Object Notation         
  • Douglas Crockford at the Yahoo Building (2007)
TEXT-BASED OPEN STANDARD DESIGNED FOR HUMAN-READABLE DATA INTERCHANGE
Json; JavaScript Object Notation; Javascript Object Notation; JSONNP; .json; JSON Schema; HOCON; I-JSON; Internet JSON; Human-Optimized Config Object Notation; ECMA-404; HJSON; JSON5; Application/json
<programming> (JSON) Syntax for serialising JavaScript objects, often used as a data carrier format. JSON is based on a subset of the JavaScript programming language. It uses a file extension of .json and is considered a language-independent data format. (2008-05-28)
Ajax (programming)         
  • The conventional model for a [[Web Application]] versus an application using Ajax
GROUP OF INTERRELATED WEB DEVELOPMENT TECHNIQUES
Asynchronous Javascript and XML; AJAX; CAJAX; Asynchronous JavaScript and JSON; AJAJ; Ajax desktops; Ajax framework; AJAX (programming); List of websites using Ajax; Chat ajax; Ajax Development Platforms; Ajax Libraries; AJAX Framework; AJAXy; Ajax scripts; Ajax language; Ajax programming; AJAX framework; Ajax (software); AHAH; Asynchronous JavaScript and XML
Ajax (also AJAX ; short for "Asynchronous JavaScript and XML") is a set of web development techniques that uses various web technologies on the client-side to create asynchronous web applications. With Ajax, web applications can send and retrieve data from a server asynchronously (in the background) without interfering with the display and behaviour of the existing page.
Jest (JavaScript framework)         
DELIGHTFUL JAVASCRIPT TESTING
Jest javascript framework; Jest (JavaScript framework)
Jest is a JavaScript testing framework built on top of Jasmine and maintained by Meta (formerly Facebook). It was designed and built by Christoph Nakazawa with a focus on simplicity and support for large web applications.

Википедия

JavaScript

JavaScript (), often abbreviated as JS, is a programming language that is one of the core technologies of the World Wide Web, alongside HTML and CSS. As of 2022, 98% of websites use JavaScript on the client side for webpage behavior, often incorporating third-party libraries. All major web browsers have a dedicated JavaScript engine to execute the code on users' devices.

JavaScript is a high-level, often just-in-time compiled language that conforms to the ECMAScript standard. It has dynamic typing, prototype-based object-orientation, and first-class functions. It is multi-paradigm, supporting event-driven, functional, and imperative programming styles. It has application programming interfaces (APIs) for working with text, dates, regular expressions, standard data structures, and the Document Object Model (DOM).

The ECMAScript standard does not include any input/output (I/O), such as networking, storage, or graphics facilities. In practice, the web browser or other runtime system provides JavaScript APIs for I/O.

JavaScript engines were originally used only in web browsers, but are now core components of some servers and a variety of applications. The most popular runtime system for this usage is Node.js.

Although Java and JavaScript are similar in name, syntax, and respective standard libraries, the two languages are distinct and differ greatly in design.